[熱門文章] 程式設計、重構、與其它任何東西的終極問答
"The Ultimate Question of Programming, Refactoring, and Everything"
網頁版: http://goo.gl/6jIcIp
PDF 版: https://yadi.sk/i/pBZqebxsr5Wyg
#Craftmanships #SoftwareEngineering #CPP #Refactoring #ProgrammingSkills
好的!遲交比不交好,今天的推薦文來了(笑)~
今天介紹這篇,是過去一個禮拜在國外鄉民聚集地 Reddit 程式設計版瘋傳的文章。標題很臭屁「The Ultimate Question of Programming, Refactoring, and Everything」(沒錯!我就在意它最後一個字 "Everything"。咬我啊! XD)。因為轉載的人實在太多,讓我不禁努力地把它看完了。
其實這篇文章講的是 C/C++ 程式寫作者應該注意、或建議遵守的 42 個小訣竅。既不「Ultimate(終極)」,也不是涵蓋「Everthing」。不過裡面還是有不少中肯的建議,所以我還是將它介紹給大家。
為了讓英文苦手的朋友也能稍微感受一下這篇文章在講什麼,所以我不負責任地快速翻譯了每個標題一下。如果對哪個主題有興趣的,就麻煩大家直接對照標題號碼去看原文解說。原文有些標題用「戲謔」或「隱晦」寫法,我若直接翻譯,大家可能不知道原作者想表達什麼。所以我會將某些標題,用比較易懂的中文重新表達。一切以「標題編號(1~42)」為準。
接下來就請享用我這個不負責任的翻譯了。有會錯原文意思的,還請各位留言在下方、然後鞭小力一點 XD。我會馬上修正的:
1. 不要去做編譯器會做的事情
如:用迴圈能存取 a[0] ~ a[9],就不要用「拷貝貼上」a[0], a[1], a[2]..., a[9] 來存取裡面的內容值。
2. 大於 0 不代表它等於 1
若文件告訴你某函數執行成功會傳回「大於0」的值、但目前這個大於0的值是「1」。請你寫程式的時候不要自作聰明地偵測「傳回值 == 1」當成成功,請乖乖遵照規格書用「傳回值 > 0」等於成功。因為將來的版本有可能還會傳回 2, 3...等其他值。
3. 當你拷貝貼上一段程式碼,記得檢查它的副本兩遍
有時候你拷貝貼上一段程式碼,會忘了去修改裡面一些不同的小數字,導致花了大把時間去檢查錯誤到底出現在哪裡。
4. 小心使用「? :」運算子。並記得多加括號
「? :」是 C/C++ 內常用的運算子。若您寫了一段這樣的原始碼「a - b?0:1」,您可能以為它是這樣運作的「a - (b?0:1)」,事實上,它是這樣運作的「(a-b)?0:1」。結論是,多加括號保平安。
5. 多用市面上有的工具來分析您的原始碼
市面上有些工具,如:原始碼靜態分析工具、原始碼排列工具...可以幫您在把原始碼送入編譯器前,就抓到錯誤。不過作者也提到,別以為倚賴這些工具,錯誤就不會發生。真正要減少錯誤還是得靠多讀規格書,增加程式寫作經驗才辦得到。
6. 確認您所有的指標,都已經轉型成整數型態
作者擔心,某些使用 64 bits 當成指標變數寬度的系統,到 32 bits 的機器內重新編譯時,會產生高位元組被截斷的慘劇。某些編譯器提供「uintptr_t」這個專門給指標變數使用的型態,會隨著編譯器所在的環境,自動調整指標寬度。
7. 別在迴圈內呼叫「alloca()」這個函數
萬一迴圈失控,alloca() 函數會霸佔大量記憶體無法釋放。建議事先在迴圈外霸佔一大塊足夠的記憶體,然後在迴圈內慢慢蠶食之。
8. 在「解構函數(Destructor)」內使用「例外處理(Exception)」是很危險的!
作者認為,在負責釋放記憶體、收尾等工作的解構函數,還去霸佔新記憶體作事情是不好的。若真的發生例外(Exception),直接「吃掉(Supress)」不要讓它出現在使用者面前可能還比較好。
9. 若你要比對字串結尾,請用 '\0' 代表
有些程式設計師因為 '\0' 其實就是數字 0,而在比對字串結尾時,直接使用 0 來比對字串結尾。作者認為這個習慣不好。
10. 請勿濫用 # ifdef
# ifdef 很好用,但很容易讓原始碼雜亂難讀。作者不會建議大家不要用,但他反對連可以用 if ~ else 解決的場合,都濫用 # ifdef。
11. 別把一堆運算子全都擠在同一列
多分成幾列,Debugger 可以比較容易指出發生錯誤的是在哪個環節。
12. 當你「拷貝貼上」程式碼時,特別注意「最後一列效應」
作者還是不太建議濫用拷貝貼上,他認為需要重複使用一段程式碼,不如好好考慮寫成稍有彈性的函數,然後重複叫用。此外,他建議大家去看「最後一列效應」這篇文章(連結在本文),並了解最後一列效應在拷貝貼上程式碼內,所扮演的角色。
13. 程式碼若很長,盡量多折幾列,然後排成像表格般一樣整齊(Table-style)
14. 好編譯器 + 好的寫碼習慣是不夠的
內文舉了個後括號「)」括錯位置,但編譯器抓不出來的例子。
15. 若有一堆意義相關的常數,請用 enum 括住它們
16. 「看我能把程式碼寫得這麼屌!」的炫耀寫碼心態不可取
寫程式碼要以「穩」「易讀」為主,不是把一些剛學不久,覺得很酷,但三個月後會忘個精光的技術用進程式碼內。
17. 想用程式碼把一塊資料清乾淨,最好把清除程式碼獨立拉出來成一個專屬函數
18. 你在一個語言行得通的方法,在另一個語言不一定行得通
19. 盡量用技巧避免在同一個類別內,建構函數彼此呼叫的情況
20. 讀檔時,只檢查有沒有讀到檔尾(EOF)似乎是不夠的
21. 正確檢查 EOF 的方法
22. 有比使用 # pragma warning(...) 來印錯誤訊息更好的方法,勿濫用
23. 如果你想取得字串長度,用函數自動幫你算,別用手算然後硬填數字上去
24. 請多使用 "override" 與 "final",它們會是你的好朋友
25. 別再把 "this" 指標跟 "nullptr"(空指標)拿來作比較
26. 小心使用 VARIANT_BOOL 這個陰險狡猾的東西
27. BSTR(Binary STRing)這個用於微軟 COM/Automation 技術中的資料型態,請小心使用
28. 能用函數把一段程式碼包起來重複用,就別用巨集包它(使用巨集函數的缺點多於優點)
29. 在迴圈或迭代程式碼間,使用 ++i,來取代 i++(i++ 編譯後的執行效能稍微差那麼一點)
30. wprintf() 函數的使用陷阱:Win32 印寬字元字串要用 %S(大寫),Win64 要用 %s(小寫)。
31. 陣列在 C/C++ 傳給函數時,並非是「傳值呼叫」(Call by Value)
32. 要把檔案內的文字直接印在螢幕上時,請不要直接使用 printf() (怕檔案內夾雜 % 開頭的字,這些字對 printf 是有特殊意義的)
33. 想對一個指標取值(亦即:*p),記得檢查它是否為 NULL。否則你對 NULL 取值會導致系統出錯的
34. 別以為 int 的上限 21億+ 很多,在 64 bits 系統中,這個數字很容易爆掉
35. 若您把 enum 常數與 switch~case 連用,增加新元素進 enum 時也別忘了加新 case 進 switch
36. 如果有怎麼抓都抓不出來的 bugs,記得往「記憶體」的方向去思考(32bits vs. 64bits 之類的問題)
37. 在 do~while() 內用 continue 指令要小心,有可能會跳過你放在底部的「更新條件」,導致無窮迴圈
38. 對於指標,請用 nullptr 代替 NULL,這是新的 C++ 規格書希望您遵循的
39. 試著別把一列式子搞得太複雜,這樣比較不會有「咦?為何這段寫錯的程式碼居然可以運作」的問題出現
40. 開始使用「原始碼靜態分析工具」吧!
41. 別為了要使用某函式庫的一個函式,而引進整個函式庫。如果只用了一個函式,建議自己寫比較容易維護。
42. 別再用 empty 這個曖昧的字眼當函數名稱了。用 erase(), clear() 都比 empty() 好。
如果您覺得小弟翻譯了這麼多,沒有功勞也有苦勞,那就麻煩按個讚犒賞小弟一下吧!當然歡迎轉發給您 Facebook 的朋友共同討論。最後提醒一句,上述 42 點別把它們全都當聖旨,親身體會驗證才是最重要的喔!
祝福大家假期愉快!
同時也有1部Youtube影片,追蹤數超過2萬的網紅KanexKane,也在其Youtube影片中提到,Debugger - Facebook for Developer: https://developers.facebook.com/tools/debug/ =—————==—————= KanexKane Blog: https://www.kanexkane.com =—————= Fac...
「debugger facebook」的推薦目錄:
- 關於debugger facebook 在 紀老師程式教學網 Facebook 的精選貼文
- 關於debugger facebook 在 香腸炒魷魚 Facebook 的精選貼文
- 關於debugger facebook 在 香腸炒魷魚 Facebook 的最讚貼文
- 關於debugger facebook 在 KanexKane Youtube 的最佳解答
- 關於debugger facebook 在 分享偵錯工具 的評價
- 關於debugger facebook 在 Developer Tools 的評價
- 關於debugger facebook 在 How to Use Facebook Debugger to Debug Links? - Sociality.io 的評價
- 關於debugger facebook 在 如何使用Facebook Debugger 工具解決分享貼文預覽圖錯誤 ... 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Correct ... - TechPrevue 的評價
- 關於debugger facebook 在 Facebook Debugger Tool: How to Detect and Debug Link ... 的評價
- 關於debugger facebook 在 如何解決Facebook 分享時抓不到標題和縮圖問題 ... 的評價
- 關於debugger facebook 在 How to use the Open Graph share Facebook debugger 的評價
- 關於debugger facebook 在 How to Use Facebook Debugger to Fix Images in Shares 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger Tool to Fix your Blog ... 的評價
- 關於debugger facebook 在 Facebook Debug 官方工具,幫你更新已分享貼文的內容資訊 的評價
- 關於debugger facebook 在 Facebook Debugger: Cara Mudah Atasi Error Preview Share ... 的評價
- 關於debugger facebook 在 [臉書]Facebook縮圖顯示教學@FB Debugger圖片/文章標題 ... 的評價
- 關於debugger facebook 在 Facebook OpenGraph Debugger | WP Engine® 的評價
- 關於debugger facebook 在 Debugger - Facebook for Developers - Catcat 的評價
- 關於debugger facebook 在 內容網站開發工具Content-based website developer tool 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Fix WordPress Images 的評價
- 關於debugger facebook 在 How to use Facebook Debugger Tool to Fix Blog Post Issue 的評價
- 關於debugger facebook 在 如何使用Facebook 連結除錯器最佳化Facebook 分享 - ShareThis 的評價
- 關於debugger facebook 在 FB臉書抓不到網站圖片?用Facebook Debugger強制更新臉書 ... 的評價
- 關於debugger facebook 在 HubSpot's 5-Step Process to Fix Images With Facebook ... 的評價
- 關於debugger facebook 在 How to Use Facebook Debugger to Fix Posting Issues 的評價
- 關於debugger facebook 在 How to Use the Facebook Link Debugger & Common Red Flags 的評價
- 關於debugger facebook 在 The Quick Guide to Using the Facebook Debugger to Fix ... 的評價
- 關於debugger facebook 在 善用Facebook工具「Debugger」 讓網頁更新的標題圖片出 ... 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Fix Facebook Link ... 的評價
- 關於debugger facebook 在 手動更新facebook 預覽連結的圖片| louie_lu's blog - Louie Lu 的評價
- 關於debugger facebook 在 Debugger Facebook Education 的評價
- 關於debugger facebook 在 What to do when Facebook sharing is not working correctly 的評價
- 關於debugger facebook 在 Facebook Link Debugger - Faq-Courses.Com 的評價
- 關於debugger facebook 在 Facebook | Development, Fb share, Coding - Pinterest 的評價
- 關於debugger facebook 在 Preview Your Content Before Sharing it With Facebook's ... 的評價
- 關於debugger facebook 在 Sharing Debugger - Facebook For Developers - Scribd 的評價
- 關於debugger facebook 在 [指南] FB 臉書分享偵測工具重抓連結資訊Facebook Debugger ... 的評價
- 關於debugger facebook 在 Tips and Tricks for Using Facebook Debugger - Presslabs 的評價
- 關於debugger facebook 在 Facebook Object Debugger CLI - GitHub 的評價
- 關於debugger facebook 在 Facebook Object Debugger CLI - GitHub 的評價
- 關於debugger facebook 在 Sharing Debugger - Facebook for Developers| 說愛你 的評價
- 關於debugger facebook 在 How To Use Facebook Debugger To Boost Conversions 的評價
- 關於debugger facebook 在 Site works but Facebook debugger Curl error - Stack Overflow 的評價
- 關於debugger facebook 在 Site works but Facebook debugger Curl error - Stack Overflow 的評價
- 關於debugger facebook 在 Troubleshooting Facebook sharing issues - Squarespace Help 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Fix Images in Shares 的評價
- 關於debugger facebook 在 What is Facebook Debugger and How to Use it to Fix Blog ... 的評價
- 關於debugger facebook 在 How to Use the Facebook Sharing Debugger Tool - InMotion ... 的評價
- 關於debugger facebook 在 Debugging Facebook: verificare come FB "vede" gli URL ... 的評價
- 關於debugger facebook 在 Facebook Debugger | developers.facebook.com - Logga In 的評價
- 關於debugger facebook 在 Debugger Facebook Developers - Support, Hosting & Design ... 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger for your Wix Website 的評價
- 關於debugger facebook 在 Facebook Sharing Debugger | RegFox Help Center 的評價
- 關於debugger facebook 在 How To Fix Facebook Images With Facebook Debugger - Nestify 的評價
- 關於debugger facebook 在 Sharing Debugger - Facebook for Developers - FB Ask - ภาษา ... 的評價
- 關於debugger facebook 在 How to Use the Facebook OpenGraph Debugger to Fix ... 的評價
- 關於debugger facebook 在 Facebook Debugger | Giving Fuel Help Center 的評價
- 關於debugger facebook 在 Top Tips : How to Use the Facebook Debugger to Fix Any ... 的評價
- 關於debugger facebook 在 What is Facebook Debugger and When Should I Use It? 的評價
- 關於debugger facebook 在 Fix wrong video metadata on Facebook and Twitter - Google ... 的評價
- 關於debugger facebook 在 Fix wrong video metadata on Facebook and Twitter - Google ... 的評價
- 關於debugger facebook 在 Facebook Debugger 解決臉書粉絲團貼文抓不到正確圖片和文字 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Correct the Facebook ... 的評價
- 關於debugger facebook 在 facebook debugger - AIOSEO 的評價
- 關於debugger facebook 在 come funziona lo strumento debugger di condivisione 的評價
- 關於debugger facebook 在 Facebook Debugger 檢查錯誤教學使用property meta標籤做分享 的評價
- 關於debugger facebook 在 Refresh a Facebook Link Preview | MeetEdgar Help Center 的評價
- 關於debugger facebook 在 Facebook's new 'SapFix' AI automatically debugs your code 的評價
- 關於debugger facebook 在 Resubmitting to the Facebook Scraper Debugger Tool & Batch ... 的評價
- 關於debugger facebook 在 Optimizing open graph tags with Facebook Sharing Debugger 的評價
- 關於debugger facebook 在 How to use the Facebook Debugger Tool - MavSocial 的評價
- 關於debugger facebook 在 Provide link to Facebook Open Graph debugger (D8) - Drupal 的評價
- 關於debugger facebook 在 Using Facebook Debugger to Fix Image Issues in Shared Posts 的評價
- 關於debugger facebook 在 facebook og debugger – International Business Consulting 的評價
- 關於debugger facebook 在 How The Facebook Debugger Improves Social Sharing 的評價
- 關於debugger facebook 在 Facebook Degugger 分享網址修正 - IN MAG 的評價
- 關於debugger facebook 在 Facebook - Debugger 的評價
- 關於debugger facebook 在 What Are Facebook OpenGraph Tags? - AddThis 的評價
- 關於debugger facebook 在 Facebook Debugger: o que é e como usar a ferramenta? 的評價
- 關於debugger facebook 在 Was kann der Facebook Debugger? - OMT 的評價
- 關於debugger facebook 在 How to use Facebook's Open Graph debugger - The latest ... 的評價
- 關於debugger facebook 在 Facebook Debugger corrige links com problema - Tecnoblog 的評價
- 關於debugger facebook 在 Here's how to use the Facebook debugger tool - Business ... 的評價
- 關於debugger facebook 在 Debug Facebook Instant game in debugger - Defold Forum 的評價
- 關於debugger facebook 在 Facebook Debugger | TicketSpice Help Center 的評價
- 關於debugger facebook 在 Facebook for Developers - Sharing Debugger - FB Ask ... 的評價
- 關於debugger facebook 在 What is a Facebook Debugger? - Quora 的評價
- 關於debugger facebook 在 [ 疑難排解] [ 教學] 使用Facebook Sharing Debugger 解決貼文 ... 的評價
- 關於debugger facebook 在 Magnet DEBUGGER FACEBOOK OPEN GRAPH CHECKER ... 的評價
- 關於debugger facebook 在 How to Use the Facebook Debugger to Fix Your WordPress ... 的評價
- 關於debugger facebook 在 Stop Facebook Posting Stress with Facebook's Sharing ... 的評價
- 關於debugger facebook 在 How to use Facebook Debugger Tool to fix Open Graph Meta ... 的評價
- 關於debugger facebook 在 Facebook Sharing Debugger scraping main page URL ... 的評價
debugger facebook 在 香腸炒魷魚 Facebook 的精選貼文
Facebook 的 Debugger 工具全面改版,現在除錯更簡單囉!
https://sofree.cc/facebook-debugger/
debugger facebook 在 香腸炒魷魚 Facebook 的最讚貼文
Facebook 除錯工具,讓你貼文都是最新der
https://sofree.cc/facebook-debugger/
debugger facebook 在 KanexKane Youtube 的最佳解答
Debugger - Facebook for Developer: https://developers.facebook.com/tools/debug/
=—————==—————=
KanexKane Blog: https://www.kanexkane.com
=—————=
Facebook: https://www.facebook.com/kanexkane79
=—————==—————=
Song: XIBE - In Your Mind (Vlog No Copyright Music)
Music provided by Vlog No Copyright Music.
Video Link: https://youtu.be/IEfFKhQ-01w
debugger facebook 在 Developer Tools 的推薦與評價
Access Facebook Developers tools like Graph API Explorer, Access Token Debugger and more. ... <看更多>
debugger facebook 在 How to Use Facebook Debugger to Debug Links? - Sociality.io 的推薦與評價
Facebook Debugger is easy to use. (Did we also mention that it is free?) All you need to do is go to the Debugger website, type in the content's link you want ... ... <看更多>
debugger facebook 在 分享偵錯工具 的推薦與評價
分享偵錯工具可讓你預覽內容分享到Facebook 後的呈現方式,以及偵測開放社交關係圖標籤的任何問題。 登入Facebook 即可使用此工具。 ... <看更多>
相關內容